home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / emacs-complete / fsf / emacs / lisp / rcompile.el < prev    next >
Lisp/Scheme  |  1994-02-07  |  7KB  |  167 lines

  1. ;;; rcompile.el Run a compilation on a remote machine
  2.  
  3. ;;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
  4.  
  5. ;; Author: Albert    <alon@milcse.rtsg.mot.com>
  6. ;; Maintainer: FSF
  7. ;; Created: 1993 Oct 6
  8. ;; Version: 1.1
  9. ;; Keywords: tools, processes
  10.  
  11. ;; This file is part of GNU Emacs.
  12.  
  13. ;; GNU Emacs is free software; you can redistribute it and/or modify
  14. ;; it under the terms of the GNU General Public License as published by
  15. ;; the Free Software Foundation; either version 2, or (at your option)
  16. ;; any later version.
  17.  
  18. ;; GNU Emacs is distributed in the hope that it will be useful,
  19. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21. ;; GNU General Public License for more details.
  22.  
  23. ;; You should have received a copy of the GNU General Public License
  24. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  25. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  26.  
  27. ;;; Commentary:
  28.  
  29. ;;; This package is for running a remote compilation and using emacs to parse
  30. ;;; the error messages. It works by rsh'ing the compilation to a remote host
  31. ;;; and parsing the output. If the file visited at the time remote-compile was
  32. ;;; called was loaded remotely (ange-ftp), the host and user name are obtained
  33. ;;; by the calling ange-ftp-ftp-name on the current directory. In this case the
  34. ;;; next-error command will also ange-ftp the files over. This is achieved
  35. ;;; automatically because the compilation-parse-errors function uses
  36. ;;; default-directory to build it's file names. If however the file visited was
  37. ;;; loaded locally, remote-compile prompts for a host and user and assumes the
  38. ;;; files mounted locally (otherwise, how was the visited file loaded).
  39.  
  40. ;;; See the user defined variables section for more info.
  41.  
  42. ;;; I was contemplating redefining "compile" to "remote-compile" automatically
  43. ;;; if the file visited was ange-ftp'ed but decided against it for now. If you
  44. ;;; feel this is a good idea, let me know and I'll consider it again.
  45.  
  46. ;;; Installation:
  47.  
  48. ;;; To use rcompile, you also need to give yourself permission to connect to
  49. ;;; the remote host.  You do this by putting lines like:
  50.  
  51. ;;; monopoly alon
  52. ;;; vme33
  53. ;;;
  54. ;;; in a file named .rhosts in the home directory (of the remote machine).
  55. ;;; Be careful what you put in this file. A line like:
  56. ;;;
  57. ;;; +
  58. ;;;
  59. ;;; Will allow anyone access to your account without a password. I suggest you
  60. ;;; read the rhosts(5) manual page before you edit this file (if you are not
  61. ;;; familiar with it already) 
  62.  
  63. ;;; Code:
  64.  
  65. (provide 'rcompile)
  66. (require 'compile)
  67. ;;; The following should not be needed.
  68. ;;; (eval-when-compile (require 'ange-ftp))
  69.  
  70. ;;;; user defined variables
  71.  
  72. (defvar remote-compile-rsh-command
  73.   (if (eq system-type 'usg-unix-v) "remsh" "rsh")
  74.   "*Name of remote shell command: `rsh' for BSD or `remsh' for SYSV.")
  75.  
  76. (defvar remote-compile-host nil
  77.   "*Host for remote compilations.")
  78.  
  79. (defvar remote-compile-user nil
  80.   "User for remote compilations.
  81. nil means use the value returned by \\[user-login-name].")
  82.  
  83. (defvar remote-compile-run-before nil
  84.   "*Command to run before compilation.
  85. This can be used for setting up enviroment variables,
  86. since rsh does not invoke the shell as a login shell and files like .login
  87. \(tcsh\) and .bash_profile \(bash\) are not run.
  88. nil means run no commands.")
  89.  
  90. (defvar remote-compile-prompt-for-host nil
  91.   "*Non-nil means prompt for host if not available from filename.")
  92.  
  93. (defvar remote-compile-prompt-for-user nil
  94.   "*Non-nil means prompt for user if not available from filename.")
  95.  
  96. ;;;; internal variables
  97.  
  98. ;; History of remote compile hosts and users
  99. (defvar remote-compile-host-history nil)
  100. (defvar remote-compile-user-history nil)
  101.  
  102.  
  103. ;;;; entry point
  104.  
  105. ;;;###autoload
  106. (defun remote-compile (host user command)
  107.   "Compile the the current buffer's directory on HOST.  Log in as USER.
  108. See \\[compile]."
  109.   (interactive
  110.    (let ((parsed (or (and (featurep 'ange-ftp)
  111.                           (ange-ftp-ftp-name default-directory))))
  112.          host user command prompt)
  113.      (if parsed
  114.          (setq host (nth 0 parsed)
  115.                user (nth 1 parsed))
  116.        (setq prompt (if (stringp remote-compile-host)
  117.                         (format "Compile on host (default %s): "
  118.                                 remote-compile-host)
  119.                       "Compile on host: ")
  120.              host (if (or remote-compile-prompt-for-host
  121.                           (null remote-compile-host))
  122.                       (read-from-minibuffer prompt
  123.                                             "" nil nil
  124.                                             'remote-compile-host-history)
  125.                     remote-compile-host)
  126.              user (if remote-compile-prompt-for-user
  127.                       (read-from-minibuffer (format
  128.                                              "Compile by user (default %s)"
  129.                                              (or remote-compile-user
  130.                                                  (user-login-name)))
  131.                                             "" nil nil
  132.                                             'remote-compile-user-history)
  133.                     remote-compile-user)))
  134.      (setq command (read-from-minibuffer "Compile command: "
  135.                                          compile-command nil nil
  136.                                          '(compile-history . 1)))
  137.      (list (if (string= host "") remote-compile-host host)
  138.            (if (string= user "") remote-compile-user user)
  139.            command)))
  140.   (setq compile-command command)
  141.   (cond (user
  142.          (setq remote-compile-user user))
  143.         ((null remote-compile-user)
  144.          (setq remote-compile-user (user-login-name))))
  145.   (let* ((parsed (and (featurep 'ange-ftp)
  146.                       (ange-ftp-ftp-name default-directory)))
  147.          (compile-command
  148.           (format "%s %s -l %s \"(%scd %s; %s)\""
  149.           remote-compile-rsh-command
  150.                   host
  151.                   remote-compile-user
  152.                   (if remote-compile-run-before
  153.                       (concat remote-compile-run-before "; ")
  154.                     "")
  155.                   (if parsed (nth 2 parsed) default-directory)
  156.                   compile-command)))
  157.     (setq remote-compile-host host)
  158.     (save-some-buffers nil nil)
  159.     (compile-internal compile-command "No more errors")
  160.     ;; Set comint-file-name-prefix in the compilation buffer so
  161.     ;; compilation-parse-errors will find referenced files by ange-ftp.
  162.     (save-excursion
  163.       (set-buffer compilation-last-buffer)
  164.       (setq comint-file-name-prefix (concat "/" host ":")))))
  165.  
  166. ;;; rcompile.el ends here
  167.